home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / mac / TIFF / TiffToPS / README tiffps < prev    next >
Text File  |  1992-03-30  |  1KB  |  43 lines

  1. --Tiff To PS README
  2. --Date:  March 5, 1992
  3.  
  4. This directory contains source code demonstrating how to generate
  5. a PostScript language file from a TIFF file. 
  6.  
  7. The code provided here is known to compile and run under DOS, on
  8. UNIX, and on the NeXT; it may require alteration to compile and run 
  9. on other platforms.
  10.  
  11. Once compiled, the demo can be used as a command-line utility to
  12. convert TIFF files to PostScript as follows:
  13.  
  14.     tiffps [params] <TIFF file> 
  15.     
  16. The params are:
  17.  
  18.     -p <n>         print page <n>   (default 1)
  19.     
  20.     -s <scale>   scale image by factor <scale>
  21.     
  22.     -f                 frame the image
  23.     
  24.     -i                 invert the image (black for white)
  25.     
  26.     -b <n>         black/white threshold (0..1)
  27.     
  28.     -2                 use PostScript Language Level 2 filters
  29.  
  30.     -c                 add descriptive caption
  31.  
  32.     -x                encode 2ps data using ASCIIHexEncode   (default is ASCII85Encode)
  33.  
  34.     -n                use image operator, rather than imagemask
  35.  
  36.     -o <file>     supplemental image output file
  37.  
  38.     -v                generate EPSI preview
  39.  
  40.     -r                reverse encoded bits within bytes
  41.  
  42.   tiffps sends its output to stdout, which can be redirected as desired.
  43.